home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / usr (gcc 1.37 libs) / mac / isatty.c < prev    next >
C/C++ Source or Header  |  1993-12-08  |  126b  |  9 lines

  1. #include <fcntl.h>
  2. #include "crtlocal.h"
  3.  
  4. int isatty(int fd)
  5.     {
  6.     mysleep(1);
  7.     return (crt_fd_tab[fd].flags & O_PIPE) != 0;
  8.     }
  9.